page.tsx 215 B

1234567891011
  1. 'use client'
  2. import React from 'react'
  3. import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
  4. const Chatbot = () => {
  5. return (
  6. <EmbeddedChatbot />
  7. )
  8. }
  9. export default React.memo(Chatbot)